0ba0413fd011e951ac48437f591cfb16834801fc,library/src/com/nakardo/atableview/internal/ATableViewCellDrawable.java,ATableViewCellDrawable,onDraw,#Shape#Canvas#Paint#,160

Before Change


		canvas.concat(getEtchedPaintMatrix(bounds));
		if (mEtchedPaint != null) shape.draw(canvas, mEtchedPaint);
		
		canvas.restore();
		
		// background.
		canvas.concat(getBackgroundPaintMatrix(bounds));

After Change


		// separator.
		canvas.concat(getSeparatorPaintMatrix(bounds));
		shape.draw(canvas, mSeparatorPaint);
		canvas.restore(); canvas.save();
		
        // top etched line.
		canvas.concat(getTopEtchedPaintMatrix(bounds));
		if (mTopEtchedPaint != null) shape.draw(canvas, mTopEtchedPaint);
		canvas.restore(); canvas.save();
		
		// background.
		canvas.concat(getBackgroundPaintMatrix(bounds));